home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / GRAPHICS / POV302.ZIP / pov302 / pov3demo / showoff / newltpot / pov / teapot2 next >
Text File  |  1995-11-30  |  966b  |  46 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2.  
  3. #version 3.0
  4. global_settings { assumed_gamma 2.2 }
  5.  
  6. #include "colors.inc"
  7. #include "textures.inc"
  8. #include "golds.inc"
  9. #include "metals.inc"
  10. #include "skies.inc"
  11.  
  12. camera {
  13.    location  <0, 4, -5.5>
  14.    direction <0, 0,  1.1>
  15.    up        <0, 1,  0>
  16.    right     <4/3, 0,  0>
  17.    look_at   <0.5, 0.5, 0>
  18. }
  19.  
  20. light_source {<10, 20, -30> color White}
  21. light_source {<15, 30, 10> color White shadowless }
  22.  
  23. plane { y, 0
  24.     pigment { color rgb <0.13, 0.41, 0.37> * 0.35 }
  25.     finish {
  26.         ambient 0.1
  27.         diffuse 0.5
  28.         reflection 0.35
  29.     }
  30. }
  31.  
  32. sky_sphere { S_Cloud1 }
  33.  
  34. #declare Teapot_Sphere_Radius = 0.05
  35. #declare Sph_Pot = union { #include "teapot.sph" }
  36. #declare Cyl2_Pot = union { #include "teapot.c2" }
  37.  
  38. union {
  39.     object { Cyl2_Pot texture { T_Gold_5C } }
  40.     object { Sph_Pot texture { T_Silver_3C } }
  41.     translate ((3.15-2.0)/2) * z
  42.     rotate -x*90
  43.     translate -y*0.65
  44.     rotate y*60
  45. }
  46.